.card-info1 {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
}

.card-info1::before,
.card-info1::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #3388f9;
    transition: all 0.5s;
}

.card-info1::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.card-info1::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.card-info1:hover::before,
.card-info1:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
}

.card-info1:hover:after {
    color: white;
    text-align: center;
    content: "Qu’est-ce que un SEO ? Le SEO consiste dans l’art d’optimiser une page web et dans sa globalité tout un site web pour augmenter leur visibilité dans les moteurs de recherche.";
}

.card-info2 {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
}

.card-info2::before,
.card-info2::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #3388f9;
    transition: all 0.5s;
}

.card-info2::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.card-info2::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.card-info2:hover::before,
.card-info2:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
}

.card-info2:hover:after {
    color: white;
    text-align: center;
    content: "Qu’est-ce que une performance d'un site web ? La performance peut se référer à la vitesse d'exécution d'un programme, à la capacité de traitement d'un serveur, à la réactivité d'un site web.";
}

.card-info3 {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
}

.card-info3::before,
.card-info3::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #3388f9;
    transition: all 0.5s;
}

.card-info3::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.card-info3::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.card-info3:hover::before,
.card-info3:hover:after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s;
}

.card-info3:hover:after {
    color: white;
    text-align: center;
    content: "Qu’est-ce que une ressource d'un site web ? Une ressource se réfère à tout élément ou composant qui influence la vitesse, l'efficacité et la réactivité globales du site.";
}

.report-score-grade {
    font: 60px "Maven Pro", Arial, sans-serif;
    letter-spacing: -0.0625em;
}

.color-grade-A {
    color: #23ab11;
}

.color-grade-B {
    color: #facc10;
}

.color-grade-C {
    color: #fa250b;
}

@keyframes growProgressBar {

    0%,
    33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: var(--value);
    }
}

@property --pgPercentage {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

div[role="progressbar"] {
    --size: 9rem;
    --fg: #23ab11;
    --bg: #e9fff1;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: 50%;
    height: 7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side,
            white 80%,
            transparent 0 99.9%,
            white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

div[role="progressbar"]::before {
    counter-reset: percentage var(--value);
    /* content: counter(percentage) '%';*/
}

/**/
div[role="progressbar1"] {
    --size: 9rem;
    --fg: #f9a119;
    --bg: #f9ebd4;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: 50%;
    height: 7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side,
            white 80%,
            transparent 0 99.9%,
            white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

div[role="progressbar1"]::before {
    counter-reset: percentage var(--value);
    /* content: counter(percentage) '%';*/
}

/**/
div[role="progressbar2"] {
    --size: 9rem;
    --fg: #fa250b;
    --bg: #ffebe9;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: 50%;
    height: 7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side,
            white 80%,
            transparent 0 99.9%,
            white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

div[role="progressbar2"]::before {
    counter-reset: percentage var(--value);
    /* content: counter(percentage) '%';*/
}

/**/
div[role="progressbar3"] {
    --size: 9rem;
    --fg: #369;
    --bg: #def;
    --pgPercentage: var(--value);
    animation: growProgressBar 3s 1 forwards;
    width: 50%;
    height: 7rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side,
            white 80%,
            transparent 0 99.9%,
            white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

div[role="progressbar3"]::before {
    counter-reset: percentage var(--value);
}

.card-body-score {
    flex: 1 1 auto;
    padding: 1.5rem 1.5rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s;
    border-radius: 5px 5px 5px 5px;
    width: 95%;
    height: 14rem;
    transition: width 1s, height 2s;
    border-radius: 18px;
}

.card-body-score:hover {
    width: 96%;
    height: 15rem;
}

.card-body-success {
    flex: 1 1 auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s;
    border-radius: 5px 5px 5px 5px;
    width: 50%;
    height: 30%;
    background: #f5fcf4;
    margin-right: 2%;
}

.card-body-warning {
    flex: 1 1 auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s;
    border-radius: 5px 5px 5px 5px;
    width: 50%;
    height: 30%;
    background: #fff2dd;
    margin-right: 2%;
}

.card-body-danger {
    flex: 1 1 auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.3s;
    border-radius: 5px 5px 5px 5px;
    width: 50%;
    height: 30%;
    background: #ffebe9;
    margin-right: 2%;
}

a.tooltiplink {
    position: relative;
    color: #646464;
    font-size: 18px;
    font-family: "calibri";
    margin-bottom: 24px;
}

.shift-down {
    animation: shiftDownAnimation 1s forwards;
}

@keyframes shiftDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(55rem);
    }
}

@media (max-width: 768px) {
    @keyframes shiftDownAnimation {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(100rem);
        }
    }
}

.table-container {
    max-height: 300px;
    overflow-y: auto;
}

.liste-container {
    max-height: 15rem;
    overflow-y: auto;
}

.image {
    width: 60%;
    height: 11rem;
    margin-left: 3rem;
    margin-top: 2rem;
}

article {
    --img-scale: 1.001;
    --title-color: black;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    border: 0.5px solid #242629;
    margin-left: -2rem;
    margin-right: 1rem;
}

article a::after {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    cursor: pointer;
    content: "";
}

/* basic article elements styling */
article h2 {
    margin: 0 0 18px 0;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    color: var(--title-color);
    transition: color 0.3s ease-out;
}

figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

article img {
    max-width: 60%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
}

.article-body {
    padding: 24px;
}

article a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #5192e7;
}

article a:focus {
    outline: 1px dotted #5192e7;
}

article a .icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-left: 5px;
    transform: translateX(var(--link-icon-translate));
    opacity: var(--link-icon-opacity);
    transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
    --img-scale: 1.1;
    --title-color: #5192e7;
    --link-icon-translate: 0;
    --link-icon-opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/************************
Generic layout (demo looks)
**************************/

*,
*::before,
*::after {
    box-sizing: border-box;
}

.articles {
    display: grid;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

@media screen and (max-width: 960px) {
    article {
        container: card/inline-size;
    }

    .article-body p {
        display: none;
    }
}

@container card (min-width: 380px) {
    .article-wrapper {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }

    .article-body {
        padding-left: 0;
    }

    figure {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    figure img {
        height: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.title_style {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none !important;
    color: #000;
    text-align: center;
}

.score_style {
    margin-left: -1.4cm;
    margin-right: -1.1cm;
}

.show_test_icon {
    margin-left: 3rem;
}

.blog {
    border: solid 1px #000;
    border-radius: 5%;
    transition: all 0.4s ease-in-out;
    min-height: 100%;
}

.blog:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.blog:hover img {
    transform: scale(1.1);
}

.blog:hover h2 {
    color: #5192e7;
}

.blog img,
.blog h2 {
    transition: all 0.4s ease-in-out;
}

#nav ul li .active {
    bottom: -0.25rem;
    border: 0 solid #206bc4;
    border-bottom-width: 2px;
}

.login-bg {
    background-color: #f2f4f7 !important;
}



.purple_button:hover {
    background: #fff;
    color: #563db6 !important;
}

.sign_google_btn {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #d0d5dd);
    background: var(--base-white, #fff);
}

.login_container {
    display: grid;
    align-content: space-between;
}

/* ========================================== home page =========================================== */
.home_title {
    color: var(--primary-900, #42307d) !important;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
    font-size: 60px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 72px !important;
    letter-spacing: -1.2px !important;
}

.home_sctitle {
    color: #6941c6 !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 30px !important;
}

.bg-light-home {
    color: var(--primary-700, #6941c6) !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 18px !important;
    background: var(--primary-50, #f9f5ff) !important;
}

.home_thTitle {
    font-size: 36px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 44px !important;
    letter-spacing: -0.72px !important;
}

.home_label {
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    color: var(--gray-700, #344054);
}

.card_title {
    color: var(--gray-900, #101828) !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 30px !important;
}

.card_description {
    color: var(--gray-600, #475467) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

ul {
    list-style: none !important;
}

.faq_question {
    color: var(--gray-900, #101828) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 28px !important;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-circle-minus' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0'%3E%3C/path%3E%3Cpath d='M9 12l6 0'%3E%3C/path%3E%3C/svg%3E");
}

.review_title {
    color: var(--gray-900, #101828) !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 30px !important;
}

.navigation-link {
    color: var(--gray-600, #475467) !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 24px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.lh-18 {
    line-height: 18px !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-24 {
    line-height: 24px !important;
}

.lh-38 {
    line-height: 38px !important;
}

.color-grey {
    color: var(--gray-500, #667085) !important;
}

.progress {
    width: 100px;
    height: 100px;
    background: none;
    position: relative;
}

.progress::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 11px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.progress>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 10px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress .progress-value {
    position: absolute;
    top: 0;
    left: 0;
}

.border-purple {
    border-color: #7f56d9 !important;
}

.color-purple {
    color: var(--primary-700, #6941c6) !important;
}

.link_active {
    color: #7f56d9 !important;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 320px;
    height: 54px;
    border-radius: 41px;
    background: var(--primary-50, #eeecf8);
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eeecf8;
    transition: 0.4s;
    border-radius: 41px;
}

.btn_active {
    /* position: absolute; */
    content: "";
    height: 54px;
    width: 160px;
    background-color: #563db6;
    transition: 0.4s;
    border-radius: 41px;
    color: white;

}

.btn_desactive {
    content: "";
    /* position: absolute; */
    height: 54px;
    width: 160px;
    background-color: #eeecf8;
    transition: 0.4s;
    border-radius: 41px;
    /* transform: translateX(160px); */
    color: #563db6;
}

.classtoggle {
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 9000;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.classtoggle1 {
    color: #563db6;
    font-size: 16px;
    font-weight: bold;
    z-index: 9000;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}

input[type="checkbox"]:checked+.slider {
    background-color: #563db6;
}

input[type="checkbox"]:checked+.slider:before {
    transform: translateX(100px);
}

input[type="checkbox"]:checked+.slider::after {
    transform: translateX(0);
}

.custom-color-performance {
    color: #563db6;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.custom-color-seo {
    color: #eca337;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.custom-color-ressource {
    color: #32b27c;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.custom-color-global {
    color: #1b72c1;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.color-card {
    background-color: white;
}

.favicon-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 50px;
}

.link_active {
    color: #7F56D9 !important;
}

.btn-register {
    border-left: 0px !important;
}

.btn-register:hover {
    border: var(--tblr-btn-border-width) solid var(--tblr-btn-border-color) !important;
    border-left: 0px !important;
}

.btn-register:active {
    border: var(--tblr-btn-border-width) solid var(--tblr-btn-border-color) !important;
    border-left: 0px !important;
    background-color: white !important;
}

.input_message {
    height: 130px !important;
    resize: none !important;
}

.user-active {
    align-items: center !important;
    background-color: #ECFDF3 !important;
    color: #12B76A !important;
}

.user-disable {
    align-items: center !important;
    background-color: #FEF3F2 !important;
    color: #F04438 !important;
}

.list-group-item.active {
    color: var(--gray-700, #344054) !important;
}

.user_avatar {
    height: 64px !important;
    width: 64px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.lh-28 {
    line-height: 28px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.color-black {
    color: var(--gray-900, #101828) !important;
}

.color-grey2 {
    color: var(--gray-600, #475467) !important;
}

.delete {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 8px solid var(--error-50, #FEF3F2);
    background: var(--error-100, #FEE4E2);
}

.cont {
    margin-top: 70px;
}

.score {
    height: 200px;
}

.img_login {
    margin-left: 300px;
    margin-top: 100px;

}

.fs-48 {
    font-size: 48px !important;
}

.lh-60 {
    line-height: 60px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.lh-32 {
    line-height: 32px !important;
}

.btn-white {
    border-radius: 8px;
    border: 1px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.fs-60 {
    font-size: 60px !important;
}

.lh-72 {
    line-height: 72px !important;
}

.fs-36 {
    font-size: 36px !important;
}

.lh-44 {
    line-height: 44px !important;
}

.bg-tab-buttons {
    background-color: #eeecf8;
}
@media (max-width: 576px){
    .bg-tab-buttons {
        overflow-x: scroll;
    }
}
.user_profile {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 200px;
    border: 4px solid var(--base-white, #FFF);
    background: var(--avatar-user-square-olivia-rhye, url(<path-to-image>), lightgray 50% / cover no-repeat);
    /* Shadow/lg */
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.profile_section {
    margin-top: -80px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #D0D5DD !important;
    content: var(--tblr-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23D0D5DD' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E")) !important;
    padding: 2px;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

.color-grey3 {
    color: var(--gray-700, #344054) !important;
}

@media only screen and (max-width: 767px) {

    /* For mobile phones: */
    .user_profile {
        width: 94px !important;
        height: 94px !important;
    }

    .profile_buttons {
        display: -webkit-inline-box !important;
    }

    .list-group-item.active {
        background-color: white !important;
        color: var(--gray-700, #344054);
    }

    .list-group-horizontal-scroll {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
    }

    .list-group-item {
        flex: 0 0 auto;
    }
}

#dataTable_wrapper {
    padding: 10px;
}

.home_img {
    width: 70%;
    height: 50%;
    margin-left: 300px;
}

.logo {

    border-radius: 50%;
}

.text-cnx {
    color: #7F56D9 !important;
    margin-top: 10px;
}

.purple_button1 {
    border-radius: 8px;
    border: 1px solid var(--primary-500, #563db6);
    background: var(--primary-500, #563db6);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease-in-out;
    height: 37px;
}

.purple_button1:hover {
    background: #fff;
    color: #563db6 !important;
}

#dataTable_wrapper .top {
    display: none !important;
}

.purple_color
{
    color: #563db6 !important;
}
.purple_button {
    border-radius: 8px;
    border: 1px solid var(--primary-500, #563db6);
    background: var(--primary-500, #563db6);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease-in-out;
}
.purple_button_inv {
    border-radius: 8px;
    border: 1px solid var(--primary-500, #563db6);
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease-in-out;
    color: #563db6 !important;
}
.purple_button_inv:hover {
    border-radius: 8px;
    border: 1px solid var(--primary-500, #563db6);
    background: #563db6;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.3s ease-in-out;
    color: #fff !important;
}
.dataTables_wrapper
{
    overflow-x: scroll;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background: white !important;
    border-color: white !important;
}
.dataTables_wrapper .dataTables_paginate .pagination .paginate_button:hover{
    color: #7f56d9 !important;
}

.btn-back {
    border-radius: 8.887px;
    border: 1.111px solid var(--gray-300, #D0D5DD);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.fs-15{
    font-size: 15px !important;
}
.dropdown-item {
    white-space: normal !important;
}
.mw-none{
    max-width: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.page-link:hover {
    background-color: var(--primary-700, #6941c6) !important;
}
.input-icon .form-control:not(:first-child), .input-icon .form-select:not(:last-child){
    padding-left: 50px !important ;}
.btn_historique:hover .icon-tabler-download{
    color: #42307d !important;
}
